home *** CD-ROM | disk | FTP | other *** search
/ Windows Game Programming for Dummies (2nd Edition) / WinGamProgFD.iso / pc / DirectX SDK / DXSDK / samples / Multimedia / VBSamples / DirectPlay / DXVBMessenger / Client / readme.txt < prev    next >
Encoding:
Text File  |  2001-10-10  |  1.7 KB  |  45 lines

  1. //-----------------------------------------------------------------------------
  2. // 
  3. // Sample Name: DXVB Messenger Client Sample
  4. // 
  5. // Copyright (C) 1999-2001 Microsoft Corporation. All rights reserved.
  6. // 
  7. //-----------------------------------------------------------------------------
  8.  
  9.  
  10. Description
  11. ===========
  12.   DXVB Messenger is an instant messaging application.
  13.   
  14. Path
  15. ====
  16.   Source: DXSDK\Samples\Multimedia\VBSamples\DirectPlay\DXVBMessenger\Client
  17.  
  18.   Executable: DXSDK\Samples\Multimedia\VBSamples\DirectPlay\Bin
  19.  
  20. User's Guide
  21. ============
  22.   Log onto a server, add friends, and send instant messages.
  23.  
  24. Programming Notes
  25. =================
  26.   * Handle DirectPlay system messages.  See implemented DirectPlay8Event interfaces
  27.   - Upon Receive event (the following messages can be received): 
  28.     Msg_LoginSuccess - Logged in successfully, update the UI
  29.     Msg_InvalidPassword - The password for this account is invalid
  30.     Msg_InvalidUser - This user doesn't exist
  31.     Msg_UserAlreadyExists - This user already exists 
  32.  
  33.     'Friend Controls
  34.     Msg_FriendAdded - A user was added to my list of friends
  35.     Msg_FriendDoesNotExist - Tried to add a friend that doesn't exist
  36.     Msg_BlockUserDoesNotExist - Tried to block a user that doesn't exist
  37.     Msg_FriendBlocked - A user was added to my list of blocked users.
  38.     Msg_SendClientFriends - Get the list of my friends from the server.
  39.  
  40.     Msg_UserBlocked - Can't send a message to this person, they've blocked you
  41.     Msg_ReceiveMessage - Received a message, show the message UI and display the message
  42.  
  43.     Msg_FriendLogon - A friend has just logged on, update UI
  44.     Msg_FriendLogoff - A friend has just logged off, update UI
  45.